func sync/atomic.StoreInt64

17 uses

	sync/atomic (current package)
		doc.go#L132: func StoreInt64(addr *int64, val int64)

	expvar
		expvar.go#L65: 	atomic.StoreInt64(&v.i, value)

	go.uber.org/atomic
		int64.go#L82: 	atomic.StoreInt64(&i.v, val)

	google.golang.org/grpc
		clientconn.go#L774: 	atomic.StoreInt64(&cc.czData.lastCallStartedTime, time.Now().UnixNano())
		clientconn.go#L1467: 	atomic.StoreInt64(&ac.czData.lastCallStartedTime, time.Now().UnixNano())
		server.go#L1095: 	atomic.StoreInt64(&s.czData.lastCallStartedTime, time.Now().UnixNano())

	google.golang.org/grpc/internal/channelz
		funcs.go#L784: 	atomic.StoreInt64(&i.id, 0)

	google.golang.org/grpc/internal/transport
		http2_client.go#L754: 				atomic.StoreInt64(&t.czData.lastStreamCreatedTime, time.Now().UnixNano())
		http2_client.go#L1591: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_client.go#L1599: 			atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_client.go#L1773: 	atomic.StoreInt64(&t.czData.lastMsgSentTime, time.Now().UnixNano())
		http2_client.go#L1778: 	atomic.StoreInt64(&t.czData.lastMsgRecvTime, time.Now().UnixNano())
		http2_server.go#L326: 	atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L584: 		atomic.StoreInt64(&t.czData.lastStreamCreatedTime, time.Now().UnixNano())
		http2_server.go#L632: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L1408: 	atomic.StoreInt64(&t.czData.lastMsgSentTime, time.Now().UnixNano())
		http2_server.go#L1413: 	atomic.StoreInt64(&t.czData.lastMsgRecvTime, time.Now().UnixNano())